Tom,
I have been spending some time trying to understand this code. I am trying to drive a total of 4 servo motors with an M code driving 4 global variables to move to different positions. I am trying to see just what to modify to add 2 more servos.
I am guessing I would be adding two more "FPGA(IO_PWMS" values equal to the new global variables. Unfortunately I dont understand the "+2,+3,+4,+5" numbers. How do I know what to add for the other two motors? I could just keep going up to +6,+7,+8,+9?
Does the modified code below look right? Are there any areas other than this that would need to be modified (other than declaring the new variables v3 and v4)?
if (++i == ncycles) // count mostly high pulses, special cycle?
{
FPGA(IO_PWMS+2) = v1; // Pulse size
FPGA(IO_PWMS+3) = 1; // Enable
FPGA(IO_PWMS+4) = v2; // Pulse size
FPGA(IO_PWMS+5) = 1; // Enable
FPGA(IO_PWMS+6)=v3; // Pulse Size Correct??
FPGA(IO_PWMS+7)=1; //Enable
FPGA(IO_PWMS+8)=v4; // Pulse size Correct??
FPGA(IO_PWMS+9)=1 //Enable
i=0;
}
else
{
FPGA(IO_PWMS+3) = 0; // Disable
FPGA(IO_PWMS+5) = 0; // Disable
FPGA(IO_PWMS+7) = 0; // Disable
FPGA(IO_PWMS+9) = 0; // Disable
}